str_old = "Good morning"

new_str = str_old.upper()

print(new_str)

#output
#GOOD MORNING